home *** CD-ROM | disk | FTP | other *** search
Text File | 1994-04-19 | 1.6 KB | 66 lines | [TEXT/MPS ] |
- //# Copyright: © 1993-94 by Apple Computer, Inc., all rights reserved.
- #ifndef _BASESESS_
- #define _BASESESS_
-
- #ifndef _ODOBJECT_
- #include "ODObject.idl"
- #endif
-
- //==============================================================================
- // Theory of Operation
- //==============================================================================
-
- //==============================================================================
- // Classes defined in this interface
- //==============================================================================
-
- interface ODBaseSession;
-
- //==============================================================================
- // Classes used by this interface
- //==============================================================================
-
- interface ODStorageSystem;
- interface ODNameSpaceManager;
-
- //=====================================================================================
- // Implementation Types
- //=====================================================================================
-
-
- //==============================================================================
- // ODBaseSession
- //==============================================================================
-
- interface ODBaseSession : ODObject
- {
-
- ODStorageSystem GetStorageSystem();
-
- void Close();
-
- ODNameSpaceManager GetNameSpaceManager();
-
-
- #ifdef __SOMIDL__
- implementation
- {
- override:
- somInit,
- somUninit,
- Purge;
-
- releaseorder:
- InitSession,
- GetStorageSystem,
- Close,
- GetNameSpaceManager,
- GetBinding;
-
- };
- #endif
- };
-
-
- #endif // _BASESESS_
-